From: Jan Beulich Date: Fri, 10 Dec 2010 18:27:17 +0000 (+0000) Subject: libxc: correct bounce direction for debug-key handling X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22?a=commitdiff_plain;h=c88b07f045cf94b50893c8630578bd6072647d1d;p=xen.git libxc: correct bounce direction for debug-key handling Signed-off-by: Jan Beulich Acked-by: Ian Campbell Signed-off-by: Ian Jackson --- diff --git a/tools/libxc/xc_misc.c b/tools/libxc/xc_misc.c index 0a207cde34..944646e28c 100644 --- a/tools/libxc/xc_misc.c +++ b/tools/libxc/xc_misc.c @@ -90,7 +90,7 @@ int xc_send_debug_keys(xc_interface *xch, char *keys) { int ret, len = strlen(keys); DECLARE_SYSCTL; - DECLARE_HYPERCALL_BOUNCE(keys, len, XC_HYPERCALL_BUFFER_BOUNCE_OUT); + DECLARE_HYPERCALL_BOUNCE(keys, len, XC_HYPERCALL_BUFFER_BOUNCE_IN); if ( xc_hypercall_bounce_pre(xch, keys) ) return -1;